  /* 底部导航 */
  footer {
    position: relative;
    padding: 0 var(--container);
    padding-top: 45px;
    background: #3b3b3b;
    display: flex;
    flex-wrap: wrap;
  }

  .footer1 {
    width: 70%;
    padding: 45px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-right: 1px solid #525458;
    grid-gap: 30px;
  }


  .footerMenus {
    width: 100%;
    display: flex;
    grid-gap: 30px;
  }

  .footerMenus a {
    color: #fff;
    font-size: 14px;
  }

  .footerIcon {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 15px 30px;
  }


  .footeritem {
    display: flex;
    align-items: center;
    grid-gap: 10px;
  }

  .footeritem img {
    width: 20px;
    height: 20px;
    object-fit: cover;
  }

  .footeritem p {
    font-size: 14px;
    color: #fff;
  }

  .footerEwm {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footerEwm img {
    width: 130px;
  }

  .footerEwm h1 {
    color: #ffffff;
    font-size: 18px;
  }

  @media (max-width: 1200px) {}

  @media (max-width: 720px) {
    .footer1 {
      padding-top: 0;
    }

    .footerMenus {
      flex-wrap: wrap;
      justify-content: center;
      grid-gap: 15px 0;
    }

    .footerMenus a {
      text-align: center;
    }

    .footerMenus a {
      width: 33.333%;
    }

    .footer1 {
      width: 100%;
      border: 0px;
    }

    .footerEwm {
      width: 100%;
    }
  }

  /* 备案 */
  .Copyright {
    margin-top: 45px;
    border-top: 1px solid #525458;
    width: 100%;
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .Copyright a {
    color: #F9F9F9;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    opacity: 0.7;
  }



  @media (max-width: 460px) {
    .Copyright a {
      font-size: 14px;
    }
  }

  /* 侧边栏 */
  /*左侧工具条*/
  #toolbar {
    position: fixed;
    z-index: 9999;
    right: 17px;
    bottom: 10%;
  }

  #toolbar li {
    margin-bottom: 3px;
    width: 57px;
    height: 57px;
    right: 0;
    position: relative;
  }

  #toolbar li a {
    display: block;
    position: absolute;
    z-index: 9;
    right: 0;
    top: 0;
    width: 57px;
    height: 57px;
    overflow: hidden;
    background: #292e39;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    white-space: nowrap;
  }

  #toolbar li i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 57px;
    height: 57px;
    font-size: 24px;
    background-color: #d9d9d9;
    position: absolute;
  }


  #toolbar li .wz {
    display: inline-block;
    line-height: 57px;
    font-size: 14px;
    color: #fff;
    vertical-align: middle;
    padding-left: 75px;
  }

  #toolbar li.ewm .ewm-box {
    position: absolute;
    z-index: 1;
    padding: 5px;
    background: #292e39;
    width: 110px;
    right: 120%;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .7s;
    transition: all .7s;
  }

  #toolbar li.ewm .ewm-box p {
    margin-bottom: 0;
  }

  #toolbar li.ewm .ewm-box img {
    max-width: 100%;
  }

  #toolbar li.ewm .ewm-box:after {
    content: '';
    position: absolute;
    right: -5px;
    bottom: 20px;
    width: 0;
    height: 0;
    line-height: 0;
    overflow: hidden;
    border-width: 5px;
    cursor: pointer;
    border-style: dashed dashed dashed solid;
    border-color: transparent transparent transparent #292e39;
    border-right: none;
  }

  #toolbar li.ewm:hover .ewm-box {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  #toolbar li.backtop {
    cursor: pointer;
  }

  #toolbar li.backtop .iconfont {
    color: #fff;
    background-color: #292e39;
  }

  #toolbar li:hover a {
    width: 200px;
  }

  #toolbar li:hover i {
    background-color: #292e39;
    color: #fff;
  }



  @media (max-width: 1200px) {
    #toolbar {
      display: none;
    }
  }